Learn R Programming

PerFit (version 1.2)

Ht statistic: Ht person-fit statistic

Description

Sijtsma's Ht person-fit statistic.

Usage

Ht(matrix)

Arguments

matrix
A data matrix of dichotomous item scores: Persons as rows, items as columns, item scores are either 0 or 1, no missing data.

Value

  • An object of class "PerFit", which is a list with elements:
  • PFscoresA vector of length $N$ (number of respondents) with the values of the person-fit statistic.
  • PFstatisticThe name of the person-fit statistic used.

Details

Sijtsma (1986) adapted a statistic introduced by Mokken (1971) that originally allowed assessing the scalability of an item to the Guttman (1944, 1950) model. The same statistic was applied by Sijtsma to the transposed data in order to detect respondents that would not comply with the Guttman model. Assume, without loss of generality, that the rows of the data matrix are ordered by increasing order of total score $S_n$ ($n=1,\ldots,N$). The statistic formula is given by the ratio $$Ht=\frac{cov(x_n,r_{(n)})}{cov_{max}(x_n,r_{(n)})},$$ where $r_{(n)}$ is the vector of total item scores computed excluding respondent $n$ and the denominator is the maximum covariance given the marginal. Hence, Ht is actually similar to Sato's C.Sato. Ht is maximum 1 for respondent $n$ when no respondent with a total score smaller/larger than $S_n$ can answer an item correctly/incorrectly that respondent $n$ has answered incorrectly/correctly, respectively. Ht equals zero when the average covariance of the response pattern of respondent $n$ with the other response patterns equals zero. Hence, (potentially) aberrant response behavior is indicated by small values of Ht (i.e., in the left tail of the sampling distribution). The Ht statistic was shown to perform relatively well in several simulation studies (Karabatsos, 2003; Sijtsma, 1986; Sijtsma and Meijer, 1992, Tendeiro and Meijer, 2013). Response vectors (i.e., rows of matrix) that only consist of 0s or 1s need to be removed before the function can be used.

References

Guttman, L. (1944) A basis for scaling qualitative data. American Sociological Review, 9, 139-150. Guttman, L. (1950) The basis for scalogram analysis. In S. A. Stouffer, L. Guttman, E. A. Suchman, P. F. Lazarsfeld, S. A. Star & J. A. Claussen (Eds.), Measurement and precision (pp. 60-90). Princeton NJ: Princeton University Press. Karabatsos, G. (2003) Comparing the Aberrant Response Detection Performance of Thirty-Six Person-Fit Statistics. Applied Measurement In Education, 16(4), 277--298. Mokken, R. J. (1971) A theory and procedure of scale analysis. Berlin, Germany: De Gruyter. Sijtsma, K. (1986) A coefficient of deviance of response patterns. Kwantitatieve Methoden, 7, 131--145. Sijtsma, K., and Meijer, R. R. (1992) A method for investigating the intersection of item response functions in Mokken's nonparametric IRT model. Applied Psychological Measurement, 16(2), 149-157. Tendeiro, J. N., and Meijer, R. R. (2013) Detection of Invalid Test Scores: The Usefulness of Simple Nonparametric Statistics. Submitted.

See Also

C.Sato

Examples

Run this code
# Load the inadequacy scale data (dichotomous item scores):
data(InadequacyData);

# Compute the Ht scores:
Ht(InadequacyData);

Run the code above in your browser using DataLab